home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
endif.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
267b
|
17 lines
CLS
Print "Would you like to see a demo?";
Input answer$
Let A$ = Left$(answer$,1)
If A$ = "y" then
For I = 1 to 100
Let X = Random(100,150)
Let Y = Random(100,150)
Let Radius = Random(5,30)
Let Hue = Random(10,200)
Color hue
Fillcircle X,Y,Radius
Next I
Endif
End